Setting the user LED is supported only on FX
series readers. The method rm.setUserLED can be used for this.
try
{
System.out.println("Change User LED to Red");
LedInfo ledInfo = new LedInfo(LED_COLOR.LED_RED, 1, false);
// Set User LED Information
rm.setUserLED(ledInfo);
}
catch (OperationFailureException exception) {
System.out.println("SetUserLED failed " +
exception.getVendorMessage());
}
catch (InvalidUsageException exception) {
}